home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / bash-1.12 / dist / lib / readline / examples / Makefile < prev    next >
Encoding:
Makefile  |  1991-07-09  |  248 b   |  13 lines

  1. # This is the Makefile for the examples subdirectory of readline. -*- text -*-
  2. #
  3.  
  4. EXECUTABLES = fileman
  5. CFLAGS  = -g -I../..
  6. LDFLAGS = -g -L..
  7.  
  8. fileman: fileman.o
  9.     $(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -ltermcap
  10.  
  11. fileman.o: fileman.c
  12.   
  13.